*.xtal File Description (version 2)

•Contents of File

This is a description of a *.xtal file that describes a crystal lattice and the included atoms.
These files are standard xml files, and follow all of the rules for xml.
ALL of the information is contained in the <cif version="2" dim="3"> ... </cif> section.
Note, the dim="3" is for 3D structures. For 2D strcutures, use dim="2".

To determine the symmetry, the best thing is to use the <id> tag (there are 530 of them).
If you just use <IT_number>, then you leave an ambiguity (e.g. space group 15 has 18 different settings).
The <H-M> or <Hall> are also good, since they uniquely identify the space group setting, but are sometimes ambiguous.
Or, you could just list all of the symmetry operations in the <symops> block.


The <cif version="2" dim="3"> ... </cif> section contains the following tags:.

•Exmaple File, Copper

<?xml version="1.0" encoding="UTF-8" ?>

<cif version="2" dim="3">
  <chemical_name_common>Copper</chemical_name_common>
  <space_group>
    <IT_number>225</IT_number>
    <H-M>Fm-3m</H-M>
  </space_group>

  <cell>
    <a unit="nm">0.361496</a>
    <b unit="nm">0.361496</b>
    <c unit="nm">0.361496</c>
    <alpha>90</alpha>
    <beta>90</beta>
    <gamma>90</gamma>
    <temperature unit="C">22.5</temperature>
    <alphaT>17e-6</alphaT>      <!-- a = ao*(1+alphaT*(TempC-22.5)) -->
  </cell>

  <atom_site>
    <label>Cu</label>
    <symbol>Cu</symbol>
    <fract>0 0 0</fract>
    <DebyeTemperature unit="K">343.5</DebyeTemperature>

  </atom_site>

  <bond_chemical unit="nm" n0="Cu" n1="Cu">0.255616</bond_chemical>

  <citation>
    <author>Wyckoff, R W G</author>
    <journal>Crystal Structures</journal>
    <volume>1</volume>
    <year>1963</year>
    <pages>7 83</pages>
    Second edition. Interscience Publishers, New York, New York
  </citation>
</cif>